ASH84
Software Engineer focused on turning complexity into simplicity. Co-founder at Payhere. Previously Tech Lead of remit team at Banksalad.
Experience
- Head of tech Payhere.Inc, 2024βpresent
- CTO Payhere.Inc, 2020β2023
- TechLead, Banksalad, 2018β2020
- Senior Software Engineer Danal, 2014β2018
Latest Blog Posts
-
Jul 18, 2018dictionary view object`dict.keys()`, `values()`, `items()` κ³Ό κΈ°μ‘΄μ python2 μλ λ€λ₯΄κ² λ³κ²½ λμλ€. κΈ°μ‘΄μ μλμ κ°μ΄ 리μ€νΈνμ λ°ννλ€. ```python # python2.x >>> d = {'a':1, 'b':2} >>> keys = d.keys() >>> values = d.values() >>> items = d.items() >>> keys ['a', 'b'] >>> values [1, 2] >>> items [('a'...